home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / MPI_Rsend.z / MPI_Rsend
Encoding:
Text File  |  2002-10-03  |  3.1 KB  |  133 lines

  1.  
  2.  
  3.  
  4. MMMMPPPPIIII____RRRRSSSSEEEENNNNDDDD((((3333))))                                                      MMMMPPPPIIII____RRRRSSSSEEEENNNNDDDD((((3333))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      MMMMPPPPIIII____RRRRsssseeeennnndddd - Provides a basic ready send operation
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      C:
  13.  
  14.           #include <mpi.h>
  15.  
  16.           int MPI_Rsend( _b_u_f, _c_o_u_n_t, _d_a_t_a_t_y_p_e, _d_e_s_t,
  17.           _t_a_g, _c_o_m_m )
  18.           void             *_b_u_f;
  19.           int              _c_o_u_n_t, _d_e_s_t, _t_a_g;
  20.           MPI_Datatype     _d_a_t_a_t_y_p_e;
  21.           MPI_Comm         _c_o_m_m;
  22.  
  23.  
  24.      C++:
  25.  
  26.           #include <mpi.h>
  27.  
  28.           void Comm::Rsend(
  29.           const void*       _b_u_f,
  30.           int               _c_o_u_n_t,
  31.           const Datatype&   _d_a_t_a_t_y_p_e,
  32.           int               _d_e_s_t,
  33.           int               _t_a_g) const
  34.  
  35.  
  36.      Fortran:
  37.  
  38.           INCLUDE "mpif.h" (or USE MPI)
  39.  
  40.           <type> BUF(*)
  41.           INTEGER _c_o_u_n_t, _d_a_t_a_t_y_p_e, _d_e_s_t, _t_a_g, _c_o_m_m, _i_e_r_r_o_r
  42.  
  43.           CALL MPI_RSEND(_b_u_f, _c_o_u_n_t, _d_a_t_a_t_y_p_e, _d_e_s_t, _t_a_g, _c_o_m_m, _i_e_r_r_o_r)
  44.  
  45.  
  46. SSSSTTTTAAAANNNNDDDDAAAARRRRDDDDSSSS
  47.      This release implements the MPI 1.2 standard, as documented by the MPI
  48.      Forum in the spring 1997 release of _M_P_I:  _A _M_e_s_s_a_g_e _P_a_s_s_i_n_g _I_n_t_e_r_f_a_c_e
  49.      _S_t_a_n_d_a_r_d.
  50.  
  51. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  52.      The MMMMPPPPIIII____RRRRsssseeeennnndddd routine provides a basic ready send operation.  This
  53.      routine accepts the following parameters:
  54.  
  55.      _b_u_f       Specifies the initial address of the send buffer (choice)
  56.  
  57.      _c_o_u_n_t     Specifies the number of elements in the send buffer
  58.                (nonnegative integer)
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. MMMMPPPPIIII____RRRRSSSSEEEENNNNDDDD((((3333))))                                                      MMMMPPPPIIII____RRRRSSSSEEEENNNNDDDD((((3333))))
  71.  
  72.  
  73.  
  74.      _d_a_t_a_t_y_p_e  Specifies the data type of each send buffer element (handle)
  75.  
  76.      _d_e_s_t      Specifies the rank of the destination (integer)
  77.  
  78.      _t_a_g       Specifies the message tag (integer)
  79.  
  80.      _c_o_m_m      Specifies the communicator (handle)
  81.  
  82.      _i_e_r_r_o_r    Specifies the return code value for successful completion,
  83.                which is in MPI_SUCCESS.  MPI_SUCCESS is defined in the mmmmppppiiiiffff....hhhh
  84.                file.
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.